home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
SGI Freeware 2002 November
/
SGI Freeware 2002 November - Disc 3.iso
/
dist
/
fw_qt3.idb
/
usr
/
freeware
/
Qt
/
include
/
qtsciicodec.h.z
/
qtsciicodec.h
Wrap
C/C++ Source or Header
|
2002-04-08
|
923b
|
36 lines
/****************************************************************************
** $Id: qt/qtsciicodec.h 3.0.3 edited Oct 12 12:18 $
**
** Definition of QTSCIICodec class
**
*****************************************************************************/
// Contributed by Hans Petter Bieker <bieker@kde.org>
// See the documentation for their license statement for the code as
// it was at the time of contribution.
#ifndef QTSCIICODEC_H
#define QTSCIICODEC_H
#ifndef QT_H
#include "qtextcodec.h"
#endif // QT_H
#ifndef QT_NO_CODECS
class Q_EXPORT QTsciiCodec : public QTextCodec {
public:
virtual int mibEnum() const;
const char* name() const;
QCString fromUnicode(const QString& uc, int& len_in_out) const;
QString toUnicode(const char* chars, int len) const;
int heuristicContentMatch(const char* chars, int len) const;
int heuristicNameMatch(const char* hint) const;
};
#endif
#endif